home *** CD-ROM | disk | FTP | other *** search
/ Acorn RISC PD-CD 1 / Acorn RISC PD-CD 1.iso / languages / c / gnu / _gnuplot / demo / using_dem < prev    next >
Encoding:
Text File  |  1992-05-26  |  708 b   |  22 lines

  1. #
  2. # Requires data file "using_dat" from this directory,
  3. # so change current working directory to this directory before running.
  4. #
  5. set title "Convex     November 1-7 1989"
  6. set label "(Weekend)" at 5,25 center
  7. plot 'using_dat' using 3:4 title "Logged in" with impulses,\
  8.      'using_dat' using 3:5 t "Load average" with points,\
  9.      'using_dat' using 3:6 t "%CPU used" with lines
  10. set nolabel
  11. pause -1 "Hit return to continue"
  12.  
  13. set title "Convex     November 1-7 1989    Circadian"
  14. set xrange[-1:24]
  15. plot 'using_dat' using 2:4 title "Logged in" with impulses,\
  16.      'using_dat' using 2:4 title "Logged in" with points
  17. pause -1 "Hit return to continue"
  18.  
  19. # undo what we have done above
  20. set title
  21. set autoscale x
  22.